static-iref 2.0.0

Build static IRI and IRI references at compile time
Documentation

Build IRI and IRI references at compile time

This is a companion crate for iref providing two macros to build 'static IRIs and IRI references at compile time.

Basic usage

Use the iri! macro to build IRI statically, and the iref! macro to build IRI references statically.

extern crate iref;
#[macro_use]
extern crate static_iref;

use iref::{Iri, IriRef};

const IRI: Iri<'static> = iri!("https://www.rust-lang.org/foo/bar#frag");
const IREF: IriRef<'static> = iref!("/foo/bar#frag");

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.